:root {
  --bg: #ffffff;
  --bg-soft: #f8f6fc;
  --bg-dark: #0c0a14;
  --ink: #1a1a2e;
  --ink-soft: #4a4660;
  --muted: #7a7490;
  --border: rgba(0,0,0,0.06);
  --accent: #7c3aed;
  --accent-soft: rgba(124,58,237,0.08);
  --accent-dark: #5b21b6;
  --cta: #d61f8c;
  --cta-light: #e040fb;
  --success: #10b981;
  --sans: 'DM Sans', -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══ TOP BAR ═══ */
.top-bar {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  padding: 10px 0;
  text-align: center;
}

.top-bar-inner { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.top-bar strong { color: #fff; }
.top-bar s { color: rgba(255,255,255,0.4); }
.top-bar-sep { color: rgba(255,255,255,0.2); }

/* ═══ NAV ═══ */
.nav { padding: 16px 0; border-bottom: 1px solid var(--border); }
.nav-inner { display: flex; justify-content: space-between; align-items: center; }
.nav-brand { font-size: 15px; font-weight: 800; color: var(--ink); }

.nav-cta {
  font-size: 13px; font-weight: 700; color: #fff;
  background: var(--cta); padding: 10px 22px;
  border-radius: 8px; text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(214,31,140,0.25); }

/* ═══ HERO ═══ */
.hero {
  background: linear-gradient(180deg, #f0eaff 0%, #fef0f5 30%, #fff 100%);
  padding: 80px 0 60px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 6px 18px; border-radius: 20px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800; line-height: 1.15;
  color: var(--ink);
  margin-bottom: 18px;
}

.highlight { color: var(--cta); }

.hero-sub {
  font-size: 18px; color: var(--ink-soft);
  max-width: 600px; margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-video {
  max-width: 700px;
  margin: 0 auto 36px;
}

.video-placeholder {
  aspect-ratio: 16/9;
  background: var(--bg-dark);
  border-radius: 16px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.play-btn {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: #fff; font-size: 24px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}

.video-placeholder p { color: rgba(255,255,255,0.5); font-size: 14px; }

.hero-cta {
  display: inline-block;
  font-size: 18px; font-weight: 800;
  color: #fff; background: linear-gradient(135deg, var(--cta), var(--cta-light));
  padding: 18px 40px; border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(214,31,140,0.3);
  transition: transform 0.15s, box-shadow 0.15s;
}
.hero-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(214,31,140,0.4); }

.hero-guarantee { font-size: 13px; color: var(--muted); margin-top: 14px; }

/* ═══ SECTIONS ═══ */
.section-header { text-align: center; margin-bottom: 40px; }

.section-kicker {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px;
}

.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800; color: var(--ink);
  line-height: 1.2; margin-bottom: 12px;
}

.section-sub { font-size: 17px; color: var(--ink-soft); max-width: 560px; margin: 0 auto; }

/* ═══ HOW IT WORKS ═══ */
.how-it-works { padding: 80px 0; background: var(--bg); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.step-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  position: relative;
}

.step-card-wide { grid-column: span 2; }

.step-badge {
  position: absolute; top: 16px; right: 16px;
  font-size: 11px; font-weight: 700;
  color: var(--success); background: rgba(16,185,129,0.08);
  padding: 4px 10px; border-radius: 6px;
}

.step-num {
  font-size: 32px; font-weight: 800;
  color: var(--accent); opacity: 0.2;
  margin-bottom: 8px;
}

.step-card h3 {
  font-size: 17px; font-weight: 800;
  color: var(--ink); margin-bottom: 8px;
}

.step-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.65; }

/* ═══ WHAT YOU GET ═══ */
.what-you-get { padding: 80px 0; background: var(--bg-soft); }

.output-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.output-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}

.output-icon { font-size: 28px; margin-bottom: 12px; }
.output-card h3 { font-size: 17px; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.output-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.65; margin-bottom: 12px; }
.output-value { font-size: 13px; font-weight: 700; color: var(--muted); text-decoration: line-through; }

/* ═══ COMPARISON ═══ */
.comparison { padding: 80px 0; background: var(--bg); }

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.compare-card {
  border-radius: 16px;
  padding: 32px;
}

.compare-old {
  background: var(--bg-soft);
  border: 1px solid var(--border);
}

.compare-new {
  background: linear-gradient(135deg, #f0eaff, #fef0f5);
  border: 2px solid rgba(124,58,237,0.2);
}

.compare-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 16px; }

.compare-card ul {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}

.compare-card li { font-size: 14px; color: var(--ink-soft); }
.compare-new li { color: var(--ink); }

.compare-total {
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 18px; font-weight: 800;
  color: var(--muted);
}

.compare-total-new { color: var(--cta); }

/* ═══ PRICING ═══ */
.pricing {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
}

.price-card {
  max-width: 480px;
  margin: 0 auto;
  background: #fff;
  border: 2px solid rgba(124,58,237,0.15);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

.price-was { font-size: 14px; color: var(--muted); margin-bottom: 4px; }
.price-was s { color: var(--muted); }

.price-now {
  font-size: 56px; font-weight: 800;
  color: var(--cta);
  line-height: 1;
  margin-bottom: 4px;
}

.price-label { font-size: 14px; color: var(--ink-soft); margin-bottom: 28px; }

.price-features {
  list-style: none; padding: 0;
  text-align: left;
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 28px;
}

.price-features li { font-size: 14px; color: var(--ink); }

.price-cta {
  display: block; width: 100%;
  font-size: 18px; font-weight: 800;
  color: #fff; background: linear-gradient(135deg, var(--cta), var(--cta-light));
  padding: 18px; border-radius: 12px;
  text-decoration: none; text-align: center;
  box-shadow: 0 8px 32px rgba(214,31,140,0.25);
  transition: transform 0.15s;
  margin-bottom: 24px;
}
.price-cta:hover { transform: translateY(-2px); }

.price-guarantee {
  display: flex; align-items: flex-start; gap: 12px;
  text-align: left;
  padding: 16px;
  background: var(--bg-soft);
  border-radius: 12px;
}

.guarantee-icon { font-size: 28px; flex-shrink: 0; }
.price-guarantee strong { font-size: 14px; color: var(--ink); display: block; margin-bottom: 4px; }
.price-guarantee p { font-size: 13px; color: var(--ink-soft); margin: 0; line-height: 1.5; }

/* ═══ FAQ ═══ */
.faq { padding: 80px 0; background: var(--bg); }

.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.faq-item summary {
  padding: 18px 24px;
  font-size: 15px; font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+'; float: right;
  font-size: 20px; font-weight: 400; color: var(--muted);
}

.faq-item[open] summary::after { content: '−'; }
.faq-item[open] summary { color: var(--accent); }

.faq-item p {
  padding: 0 24px 18px;
  font-size: 14px; color: var(--ink-soft);
  line-height: 1.7;
}

/* ═══ FINAL CTA ═══ */
.final-cta {
  padding: 80px 0;
  background: var(--bg-dark);
  text-align: center;
}

.final-cta h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800; color: #fff;
  line-height: 1.3; margin-bottom: 28px;
}

.final-cta .hero-guarantee { color: rgba(255,255,255,0.4); }

/* ═══ FOOTER ═══ */
.footer {
  padding: 24px 0;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
}

.footer-brand { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.4); }
.footer-legal { font-size: 11px; color: rgba(255,255,255,0.2); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 768px) {
  .hero { padding: 48px 0 40px; }
  .compare-grid { grid-template-columns: 1fr; }
  .step-card-wide { grid-column: span 1; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}
